home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1999 January / PC Plus Super CD No55a (PCP-147A-1-99) (Disc 1) (1998).iso / linux / developers / visualtcl / windows / vtcl / lib / remove.sh < prev    next >
Encoding:
Linux/UNIX/POSIX Shell Script  |  1997-03-27  |  79 b   |  7 lines

  1. #!/bin/sh
  2. for i in *.tcl
  3. do
  4.     mv $i $i.old
  5.     /bin/sed "s/$1//g" $i.old > $i
  6. done
  7.